Make the API for dao more ffluent and transparent
[smart-dao.git] / smart-abstract-dao / src / main / java / com / smartitengineering / dao / common / CommonWriteDao.java
blob72c97b1457089c84b6e46d4d06f04d5acb523071
1 /*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5 package com.smartitengineering.dao.common;
7 import com.smartitengineering.domain.PersistentDTO;
9 /**
11 * @author imyousuf
13 public interface CommonWriteDao<Template extends PersistentDTO> {
15 public void save(Template... states);
17 public void update(Template... states);
19 public void delete(Template... states);