public void NUnit_Domain_GetByIdCatReligion()
 {
     Cat_ReligionServices service = new Cat_ReligionServices();
     var Religion = new Cat_Religion { Id = 2 };
     //var result = service.GetByIdCatReligion(Religion.Id) as Cat_Religion;
     var result = service.GetById<Cat_Religion>(Religion.Id, ref status);
     NUnit.Framework.Assert.IsNotNull(result);
     Console.Write("SearchResult: " + result.Id + " | " + result.ReligionName + " | " + result.ReligionCode );
 }
        public void NUnit_Domain_GetByIdCatReligion()
        {
            Cat_ReligionServices service = new Cat_ReligionServices();
            var Religion = new Cat_Religion {
                Id = 2
            };
            //var result = service.GetByIdCatReligion(Religion.Id) as Cat_Religion;
            var result = service.GetById <Cat_Religion>(Religion.Id, ref status);

            NUnit.Framework.Assert.IsNotNull(result);
            Console.Write("SearchResult: " + result.Id + " | " + result.ReligionName + " | " + result.ReligionCode);
        }