Example #1
0
        public void Location_Can_Edit()
        {
            var location = new Location {Id=1, AddressId = 1, CreatedByUserId = 1, CreatedDate = new DateTime(2013,1,1), ModifiedByUserId = 2, ModifiedDate = new DateTime(2013,1,2), Name = "Flannagan's Dublinzzzzzzzz", NickName = "Flans"};

                var repo = new Dig.Data.Repositories.LocationRepository();
                repo.Update(location);
        }