Zbiór zmian 930 dla trunk/eCard/eCardMVC

Pokaż
Ignoruj:
Data:
2009-12-07 11:39:40 (16 years ago)
Autor:
marek
Opis:

re #215 - drobny refactoring

Lokalizacja:
trunk/eCard/eCardMVC
Pliki:
2 usunięte
15 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • trunk/eCard/eCardMVC/Platnosci.Core

    • Włąściwość: svn:ignore set to
      bin
  • trunk/eCard/eCardMVC/Platnosci.Tests

    • Włąściwość: svn:ignore set to
      bin
  • trunk/eCard/eCardMVC/Platnosci.Tests/Platnosci.Tests.csproj

    r927 r930  
    3232  </PropertyGroup> 
    3333  <ItemGroup> 
     34    <Reference Include="Interop.SHDocVw, Version=1.1.0.0, Culture=neutral, PublicKeyToken=db7cfd3acb5ad44e, processorArchitecture=MSIL"> 
     35      <SpecificVersion>False</SpecificVersion> 
     36      <HintPath>..\lib\Interop.SHDocVw.dll</HintPath> 
     37    </Reference> 
    3438    <Reference Include="Moq, Version=4.0.812.4, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL"> 
    3539      <SpecificVersion>False</SpecificVersion> 
  • trunk/eCard/eCardMVC/Platnosci.Tests/Web/FakeDataContext.cs

    r918 r930  
    22using System.Collections.Generic; 
    33using System.Linq; 
    4 using System.Web; 
    54using Platnosci.Core.Interface; 
    65using Platnosci.Core.Linq; 
     
    109    public class FakeDataContext : IDataContext 
    1110    { 
    12         private List<PlatnosciEcard> listaPayment = new List<PlatnosciEcard>(); 
     11        private const string CODE_OK = "payment_deposited";        //transakcja potwierdzona do rozliczenia 
    1312        
    14         private string code_Ok = "payment_deposited";        //transakcja potwierdzona do rozliczenia 
    15         
    16         private readonly List<object> lista = new List<object>(); 
    17         private Function _f = new Function(); 
     13        private readonly List<object> _lista = new List<object>(); 
     14        private readonly Function _function = new Function(); 
    1815  
    1916 
    2017        public IQueryable<T> GetTable<T>() where T : class 
    2118        { 
    22             var query = lista.Where(objects => typeof(T).IsAssignableFrom(objects.GetType())); 
     19            var query = _lista.Where(objects => typeof(T).IsAssignableFrom(objects.GetType())); 
    2320            return query.Select(o => (T)o).AsQueryable(); 
    2421        } 
     
    2623        public void Insert<T>(T item) where T : class 
    2724        { 
    28             lista.Add(item); 
     25            _lista.Add(item); 
    2926        } 
    3027 
    3128        public void Delete<T>(T item) where T : class 
    3229        { 
    33             lista.Remove(item); 
     30            _lista.Remove(item); 
    3431        } 
    3532 
     
    5754        { 
    5855             
    59             PlatnosciEcard platnosc = _f.createNewPayment(123456, true, DateTime.Now, 123); 
    60             List<PlatnosciEcard> payment = new List<PlatnosciEcard>(); 
    61             List<PotwierdzeniaEcard> listaConfirm = new List<PotwierdzeniaEcard>(); 
    62             listaConfirm.Add((PotwierdzeniaEcard)lista[0]); 
     56            var platnosc = _function.CreateNewPayment(123456, true, DateTime.Now, 123); 
     57            var payment = new List<PlatnosciEcard>(); 
     58            var listaConfirm = new List<PotwierdzeniaEcard> {(PotwierdzeniaEcard) _lista[0]}; 
    6359            payment.Add(platnosc); 
    6460 
    65             List<PotwierdzeniaEcard> new_confirm = new List<PotwierdzeniaEcard>(); 
     61            var newConfirm = new List<PotwierdzeniaEcard>(); 
    6662 
    6763            if (platnosc.IDFaktury == idFaktury)  
    6864            { 
    69                 if (listaConfirm[0].ORDERNUMBER == platnosc.ORDERNUMBER && listaConfirm[0].CURRENTSTATE == code_Ok) 
    70                     new_confirm.Add(listaConfirm[0]); 
     65                if (listaConfirm[0].ORDERNUMBER == platnosc.ORDERNUMBER && listaConfirm[0].CURRENTSTATE == CODE_OK) 
     66                    newConfirm.Add(listaConfirm[0]); 
    7167            } 
    72             System.Diagnostics.Debug.WriteLine("lista" + new_confirm.Count());   
    73             return new_confirm; 
     68            System.Diagnostics.Debug.WriteLine("lista" + newConfirm.Count());   
     69            return newConfirm; 
    7470        } 
    7571        public int GetOrdernumber(string desc, int? id, DateTime? data) 
  • trunk/eCard/eCardMVC/Platnosci.Tests/Web/Function.cs

    r896 r930  
    11using System; 
    2 using System.Collections.Generic; 
    3 using System.Linq; 
    4 using System.Text; 
    52using Platnosci.Core.Linq; 
    63using System.Web.Mvc; 
     
    118    public class Function 
    129    { 
    13         public vPlatnosciEcard createInvoice(int id, string nip, string fak_numer, decimal brutto, byte SystemKsiegowy) 
     10        public vPlatnosciEcard CreateInvoice(int id, string nip, string fak_numer, decimal brutto, byte SystemKsiegowy) 
    1411        { 
    15  
    16             vPlatnosciEcard platnosc = new vPlatnosciEcard(); 
     12            var platnosc = new vPlatnosciEcard(); 
    1713            platnosc.ID_faktury = id; 
    1814            platnosc.nip = nip; 
     
    2319            return platnosc; 
    2420        } 
    25         public PlatnosciEcard createNewPayment(int ordernumber, bool status, DateTime data, int id_faktury) 
     21        public PlatnosciEcard CreateNewPayment(int ordernumber, bool status, DateTime data, int id_faktury) 
    2622        { 
    27             PlatnosciEcard platnosc = new PlatnosciEcard(); 
     23            var platnosc = new PlatnosciEcard(); 
    2824            platnosc.ORDERNUMBER = ordernumber; 
    2925            platnosc.Status = status; 
     
    3329            return platnosc; 
    3430        } 
    35         public PotwierdzeniaEcard createConfirm(string code, int ordernumber) 
     31        public PotwierdzeniaEcard CreateConfirm(string code, int ordernumber) 
    3632        { 
    37             PotwierdzeniaEcard potwierdzenie = new PotwierdzeniaEcard(); 
     33            var potwierdzenie = new PotwierdzeniaEcard(); 
    3834            potwierdzenie.CURRENTSTATE = code; 
    3935            potwierdzenie.ORDERNUMBER = ordernumber; 
     
    4137            return potwierdzenie; 
    4238        } 
    43         public Payer createPayer(int id, string name, string surname) 
     39         
     40        public Payer CreatePayer(int id, string name, string surname) 
    4441        { 
    45             Payer payer = new Payer(); 
    46             payer.Id_faktury = id; 
    47             payer.FirstName = name; 
    48             payer.LastName = surname; 
     42            var payer = new Payer {Id_faktury = id, FirstName = name, LastName = surname}; 
    4943 
    5044            return payer; 
    5145        } 
    52         public ControllerContext createControllerContext(string UserIdentity) 
     46 
     47        public ControllerContext CreateControllerContext(string UserIdentity) 
    5348        { 
    5449 
  • trunk/eCard/eCardMVC/Platnosci.Tests/Web/MerchantControllerTests.cs

    r927 r930  
    2424        { 
    2525            IRepository<vPlatnosciEcard> repVPayment = new Repository<vPlatnosciEcard>(new FakeDataContext()); 
    26             vPlatnosciEcard platnosc = _f.createInvoice(123, "nip1", "", 0, 0); 
     26            vPlatnosciEcard platnosc = _f.CreateInvoice(123, "nip1", "", 0, 0); 
    2727            repVPayment.Insert(platnosc); 
    2828 
    29             Payer payer = _f.createPayer(123, "test", "test"); 
     29            Payer payer = _f.CreatePayer(123, "test", "test"); 
    3030 
    3131            var controller = new PlatnoscController(repVPayment, null, null, _t); 
    32             controller.ControllerContext = _f.createControllerContext("nip2"); 
     32            controller.ControllerContext = _f.CreateControllerContext("nip2"); 
    3333 
    3434            var result = controller.Show(payer, "pl") as ViewResult; 
     
    4343        { 
    4444            IRepository<vPlatnosciEcard> repVPayment = new Repository<vPlatnosciEcard>(new FakeDataContext()); 
    45             vPlatnosciEcard platnosc = _f.createInvoice(12, "nip1", "", 0, 0); 
     45            vPlatnosciEcard platnosc = _f.CreateInvoice(12, "nip1", "", 0, 0); 
    4646            repVPayment.Insert(platnosc); 
    4747 
    48             Payer payer = _f.createPayer(123, "test", "test"); 
     48            Payer payer = _f.CreatePayer(123, "test", "test"); 
    4949 
    5050            var controller = new PlatnoscController(repVPayment, null, null, _t); 
    51             controller.ControllerContext = _f.createControllerContext("nip2"); 
     51            controller.ControllerContext = _f.CreateControllerContext("nip2"); 
    5252 
    5353            var result = controller.Show(payer, "pl") as ViewResult; 
  • trunk/eCard/eCardMVC/Platnosci.Tests/Web/PlatnosciControllerTests.cs

    r927 r930  
    3434        {           
    3535           var repository = new Repository<PlatnosciEcard>(new FakeDataContext()); 
    36            var platnosci = _f.createNewPayment(orderNumber, false, DateTime.Now, 12345);  
     36           var platnosci = _f.CreateNewPayment(orderNumber, false, DateTime.Now, 12345);  
    3737           repository.Insert(platnosci); 
    3838           repository.SubmitChanges(); 
     
    6464        { 
    6565            var repPayment = new Repository<PlatnosciEcard>(new FakeDataContext()); 
    66             var platnosci = _f.createNewPayment(orderNumber, false, DateTime.Now, 12345); 
     66            var platnosci = _f.CreateNewPayment(orderNumber, false, DateTime.Now, 12345); 
    6767            repPayment.Insert(platnosci); 
    6868            repPayment.SubmitChanges(); 
     
    9393        { 
    9494            IRepository<PlatnosciEcard> repPayment = new Repository<PlatnosciEcard>(new FakeDataContext()); 
    95             PlatnosciEcard platnosc = _f.createNewPayment(orderNumber, false, data, 1); 
     95            PlatnosciEcard platnosc = _f.CreateNewPayment(orderNumber, false, data, 1); 
    9696            repPayment.Insert(platnosc); 
    9797 
     
    110110            IRepository<PlatnosciEcard> repPayment = new Repository<PlatnosciEcard>(new FakeDataContext()); 
    111111 
    112             PlatnosciEcard platnosc = _f.createNewPayment(orderNumber, false, data, 1); 
     112            PlatnosciEcard platnosc = _f.CreateNewPayment(orderNumber, false, data, 1); 
    113113            repPayment.Insert(platnosc); 
    114114 
     
    126126        { 
    127127            IRepository<vPlatnosciEcard> repVPayment = new Repository<vPlatnosciEcard>(new FakeDataContext()); 
    128             vPlatnosciEcard platnosc = _f.createInvoice(123, "nip1", "", 0, 0); 
    129             repVPayment.Insert(platnosc); 
    130  
    131             var controller = new PlatnoscController(repVPayment, null, null, _t); 
    132             controller.ControllerContext = _f.createControllerContext("nip2"); 
     128            vPlatnosciEcard platnosc = _f.CreateInvoice(123, "nip1", "", 0, 0); 
     129            repVPayment.Insert(platnosc); 
     130 
     131            var controller = new PlatnoscController(repVPayment, null, null, _t); 
     132            controller.ControllerContext = _f.CreateControllerContext("nip2"); 
    133133            
    134134            var result = controller.Show("123","pl") as ViewResult; 
     
    143143        { 
    144144            IRepository<vPlatnosciEcard> repVPayment = new Repository<vPlatnosciEcard>(new FakeDataContext()); 
    145             vPlatnosciEcard platnosc = _f.createInvoice(123, "", "", 0, 0); 
     145            vPlatnosciEcard platnosc = _f.CreateInvoice(123, "", "", 0, 0); 
    146146            repVPayment.Insert(platnosc); 
    147147 
     
    161161            //Tworzymy takie dane aby platnosc o danym id byla juz zaplacona  
    162162            var repVPayment = new Repository<vPlatnosciEcard>(new FakeDataContext()); 
    163             var invoice = _f.createInvoice(123, "nip1", "aaa", 0, 0); 
     163            var invoice = _f.CreateInvoice(123, "nip1", "aaa", 0, 0); 
    164164            repVPayment.Insert(invoice); 
    165165            repVPayment.SubmitChanges(); 
    166166 
    167167            var repConfirm = new Repository<PotwierdzeniaEcard>(new FakeDataContext()); 
    168             var confirm = _f.createConfirm(code_Ok, 123456); 
     168            var confirm = _f.CreateConfirm(code_Ok, 123456); 
    169169            repConfirm.Insert(confirm); 
    170170            repConfirm.SubmitChanges(); 
    171171 
    172172            var controller = new PlatnoscController(repVPayment, null, repConfirm, _t); 
    173             controller.ControllerContext = _f.createControllerContext("nip1"); 
     173            controller.ControllerContext = _f.CreateControllerContext("nip1"); 
    174174            //controller.setZaplacono("Platnosc zostala uregulowana"); 
    175175 
     
    185185        { 
    186186            IRepository<vPlatnosciEcard> repVPayment = new Repository<vPlatnosciEcard>(new FakeDataContext()); 
    187             vPlatnosciEcard platnosc = _f.createInvoice(123, "nip1", "numer", 200, 0); 
     187            vPlatnosciEcard platnosc = _f.CreateInvoice(123, "nip1", "numer", 200, 0); 
    188188            repVPayment.Insert(platnosc); 
    189189 
    190190            var repConfirm = new Repository<PotwierdzeniaEcard>(new FakeDataContext()); 
    191             var confirm = _f.createConfirm(code_Ok, 1); 
     191            var confirm = _f.CreateConfirm(code_Ok, 1); 
    192192            repConfirm.Insert(confirm); 
    193193            repConfirm.SubmitChanges(); 
    194194 
    195195            var controller = new PlatnoscController(repVPayment, null, repConfirm, _t); 
    196             controller.ControllerContext = _f.createControllerContext("nip1"); 
     196            controller.ControllerContext = _f.CreateControllerContext("nip1"); 
    197197 
    198198            var result = controller.Show("123", "pl") as ViewResult; 
     
    209209        { 
    210210            IRepository<vPlatnosciEcard> repVPayment = new Repository<vPlatnosciEcard>(new FakeDataContext()); 
    211             vPlatnosciEcard platnosc = _f.createInvoice(123, "nip1", "numer", 200, 0); 
    212             repVPayment.Insert(platnosc); 
    213  
    214             var controller = new PlatnoscController(repVPayment, null, null, _t); 
    215             controller.ControllerContext = _f.createControllerContext("nip1"); 
     211            vPlatnosciEcard platnosc = _f.CreateInvoice(123, "nip1", "numer", 200, 0); 
     212            repVPayment.Insert(platnosc); 
     213 
     214            var controller = new PlatnoscController(repVPayment, null, null, _t); 
     215            controller.ControllerContext = _f.CreateControllerContext("nip1"); 
    216216             
    217             Payer payer = _f.createPayer(123, "", "test");  //Brak imienia 
     217            Payer payer = _f.CreatePayer(123, "", "test");  //Brak imienia 
    218218            controller.Show(payer, "pl"); 
    219219            Assert.That(controller.ModelState.IsValid, Is.False); 
     
    224224        { 
    225225            IRepository<vPlatnosciEcard> repVPayment = new Repository<vPlatnosciEcard>(new FakeDataContext()); 
    226             vPlatnosciEcard platnosc = _f.createInvoice(123, "nip1", "numer", 200, 0); 
    227             repVPayment.Insert(platnosc); 
    228  
    229             var controller = new PlatnoscController(repVPayment, null, null, _t); 
    230             controller.ControllerContext = _f.createControllerContext("nip1"); 
    231  
    232             Payer payer = _f.createPayer(123, "test", "test");   
     226            vPlatnosciEcard platnosc = _f.CreateInvoice(123, "nip1", "numer", 200, 0); 
     227            repVPayment.Insert(platnosc); 
     228 
     229            var controller = new PlatnoscController(repVPayment, null, null, _t); 
     230            controller.ControllerContext = _f.CreateControllerContext("nip1"); 
     231 
     232            Payer payer = _f.CreatePayer(123, "test", "test");   
    233233            var result = controller.Show(payer, "pl") as ViewResult; 
    234234 
  • trunk/eCard/eCardMVC/Platnosci.Tests/Web/StatusTest.cs

    r913 r930  
    1 using System; 
    2 using System.Collections.Generic; 
    3 using System.Linq; 
    4 using System.Text; 
     1using System.Linq; 
    52using NUnit.Framework; 
    63using Platnosci.Core.Linq; 
     
    1512    class StatusTest 
    1613    { 
    17         private Function _f = new Function(); 
    18  
    1914        [Test] 
    2015        [Category("Unit")] 
     
    9994            Assert.That(result.Content.Contains("SqlException")); 
    10095        } 
    101         [Test] 
    102         [Category("Unit")] 
    103         public void Correct_Date_Test() 
    104         { 
    105             string merchant = "ABC15S"; 
    106             int order = 1234; 
    107  
    108             var controller = new PlatnoscController(); 
    109             IRepository<PotwierdzeniaEcard> repConfirm = controller.getRepConfirm(); 
    110             var builder = new TestControllerBuilder(); 
    111             builder.InitializeController(controller); 
    112             builder.Form.Add("MERCHANTNUMBER", merchant); 
    113             builder.Form.Add("ORDERNUMBER", order.ToString()); 
    114             builder.Form.Add("VALIDATIONCODE", "000"); 
    115  
    116             var result = controller.Status(); 
    117             var pl = repConfirm.Find(o => o.MERCHANTNUMBER == merchant && o.ORDERNUMBER == order).SingleOrDefault(); 
    118             System.Diagnostics.Debug.WriteLine("Dodano płatność do repozytorium."); 
    119             Assert.That(pl.ORDERNUMBER.Equals(order)); 
    120             
    121             repConfirm.Delete(pl); 
    122             System.Diagnostics.Debug.WriteLine("Usunięto poprawnie płatność o ORDERNUMBER: " + pl.ORDERNUMBER +" i MERCHANTNUMBER: " + pl.MERCHANTNUMBER); 
    123         } 
    12496    } 
    12597} 
  • trunk/eCard/eCardMVC/Platnosci.Tests/Web/TestMethods.cs

    r896 r930  
    1 using System; 
    2 using System.Collections.Generic; 
    3 using System.Linq; 
    4 using System.Text; 
    5 using NUnit.Framework; 
     1using NUnit.Framework; 
    62using Platnosci.Core.Linq; 
    7 using Platnosci.Core.Interface; 
    83 
    94namespace Platnosci.Tests.Web 
     
    127    class TestMethods 
    138    { 
    14         private Function _f = new Function(); 
     9        private readonly Function _function = new Function(); 
    1510 
    1611        [Test] 
     
    1813        public void TestInsertMethodForPayment() 
    1914        { 
    20             FakeDataContext fake = new FakeDataContext(); 
    21             var _rep = new Repository<vPlatnosciEcard>(fake); 
     15            var fake = new FakeDataContext(); 
     16            var vPlatnosciEcardRepository = new Repository<vPlatnosciEcard>(fake); 
    2217 
    23             vPlatnosciEcard platnosc = _f.createInvoice(123, "nip", "", 0, 0); 
    24             _rep.Insert(platnosc); 
     18            var platnosc = _function.CreateInvoice(123, "nip", "", 0, 0); 
     19            vPlatnosciEcardRepository.Insert(platnosc); 
    2520 
    26             System.Diagnostics.Debug.WriteLine("rep.Count: " + _rep.Count());             
    27             vPlatnosciEcard pl = _rep.FindOne(123); 
     21            System.Diagnostics.Debug.WriteLine("rep.Count: " + vPlatnosciEcardRepository.Count());             
     22            var pl = vPlatnosciEcardRepository.FindOne(123); 
    2823            System.Diagnostics.Debug.WriteLine("Wartosc nip ma byc 'nip'. Jest " + pl.nip); 
    2924            Assert.That(pl.nip, Is.EqualTo("nip")); 
  • trunk/eCard/eCardMVC/Platnosci.Tests/Web/UIAccountTest.cs

    r882 r930  
    1 using System; 
    2 using System.Collections.Generic; 
    3 using System.Linq; 
    4 using System.Text; 
    5 using NUnit.Framework; 
     1using NUnit.Framework; 
    62using WatiN.Core; 
    7 using System.Web.Mvc; 
    83 
    94namespace Platnosci.Tests.Web 
     
    2116            ie.Button(Find.ById("loguj")).Click(); 
    2217            Assert.IsTrue(ie.ContainsText("została uregulowana")); 
     18            ie.ForceClose(); 
    2319        } 
    2420        [Test] 
     
    3127            ie.Button(Find.ById("loguj")).Click(); 
    3228            Assert.IsTrue(ie.ContainsText("Logowanie nie powiodło się")); 
     29            ie.ForceClose(); 
    3330        } 
    3431    } 
  • trunk/eCard/eCardMVC/Platnosci.Tests/Web/UIPlatnosciTests.cs

    r882 r930  
    1 using System; 
    2 using System.Collections.Generic; 
    3 using System.Linq; 
    4 using System.Text; 
    5 using NUnit.Framework; 
     1using NUnit.Framework; 
    62using WatiN.Core; 
    7 using System.Web.Mvc; 
    83 
    94namespace Platnosci.Tests.Web 
     
    149        [Test] 
    1510        [Category("UI")] 
    16         public void checkErrorPay() 
     11        public void CheckErrorPay() 
    1712        { 
    18             string test = "test"; 
    19             IE ie = new IE("http://localhost:3646/pl/Account/LogOn"); 
     13            const string test = "test"; 
     14            var ie = new IE("http://localhost:3646/pl/Account/LogOn"); 
    2015            ie.TextField(Find.ByName("numer_faktury")).TypeText("27/ASZ/2009"); 
    2116            ie.TextField(Find.ByName("nip")).TypeText("854956281"); 
     
    2621            ie.Button(Find.ById("place")).Click(); 
    2722            Assert.IsTrue(ie.ContainsText("Proszę podać")); 
     23            ie.ForceClose(); 
    2824        } 
    2925        [Test] 
    3026        [Category("UI")] 
    31         public void checkCorrectPay() 
     27        public void CheckCorrectPay() 
    3228        { 
    33             string test = "test"; 
    34             IE ie = new IE("http://localhost:3646/pl/Account/LogOn"); 
     29            const string test = "test"; 
     30            var ie = new IE("http://localhost:3646/pl/Account/LogOn"); 
    3531            ie.TextField(Find.ByName("numer_faktury")).TypeText("27/ASZ/2009"); 
    3632            ie.TextField(Find.ByName("nip")).TypeText("854956281"); 
     
    4137            ie.Button(Find.ById("place")).Click(); 
    4238            Assert.IsTrue(ie.ContainsText("Imię i nazwisko:" + test + " " + test)); 
     39            ie.ForceClose(); 
    4340        } 
    4441    } 
  • trunk/eCard/eCardMVC/Platnosci/Controllers/AccountController.cs

    r880 r930  
    11using System; 
    22using System.Linq; 
    3 using System.Text; 
    43using System.Web.Mvc; 
    54using System.Web.Security; 
    6 using System.Collections.Generic; 
    75using Platnosci.Core.Linq; 
    86using Platnosci.Models; 
    9 using System.Globalization; 
    10 using System.Threading; 
    117using Platnosci.Core.Interface; 
    12 using System.Resources; 
    13 using Platnosci.Core; 
    148 
    159namespace Platnosci.Controllers 
  • trunk/eCard/eCardMVC/Platnosci/Controllers/HomeController.cs

    r866 r930  
    1 using System; 
    2 using System.Collections.Generic; 
    3 using System.Linq; 
    4 using System.Web; 
    5 using System.Web.Mvc; 
     1using System.Web.Mvc; 
    62 
    73namespace Platnosci.Controllers 
  • trunk/eCard/eCardMVC/Platnosci/Platnosci.Web.csproj

    r915 r930  
    209209        <WebProjectProperties> 
    210210          <UseIIS>False</UseIIS> 
    211           <AutoAssignPort>True</AutoAssignPort> 
     211          <AutoAssignPort>False</AutoAssignPort> 
    212212          <DevelopmentServerPort>3646</DevelopmentServerPort> 
    213213          <DevelopmentServerVPath>/</DevelopmentServerVPath> 
  • trunk/eCard/eCardMVC/Platnosci/Platnosci.Web.csproj.user

    r883 r930  
    11<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 
    22  <PropertyGroup> 
    3     <ProjectView>ShowAllFiles</ProjectView> 
     3    <ProjectView>ProjectFiles</ProjectView> 
    44  </PropertyGroup> 
    55  <ProjectExtensions>