Example #1
0
        // Deletes a specific mother from the DS
        public void DeleteMother(uint motherId)

        {
            DeleteObjects <Contract>(GetContractsByCondition(x => x.Mother.Id == motherId).ToList <Contract>());
            DAL.DeleteMother(motherId);
        }